When overridden in a derived class, reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
'Declaration
Public Overloads Overrides Function Read( _
ByVal () As System.Byte, _
ByVal As System.Integer, _
ByVal As System.Integer _
) As System.Integer
public override System.int Read(
System.byte[] ,
System.int ,
System.int
)
Parameters
- buffer
- offset
- count
Return Value
The total number of bytes read into the buffer. This can be less than the number of bytes requested if that many bytes are not currently available, or zero (0) if the end of the stream has been reached.